前言
https://github.com/zhangkn/ZX...
Alcatraz is an open-source package manager for Xcode 7
https://github.com/alcatraz/A...
Until there's a new release, this will install Alcatraz for you, then clean up after itself:
git clone https://github.com/alcatraz/Alcatraz.git
cd Alcatraz
xcodebuild
cd ..
rm -rf Alcatraz
iOS返回的JSON数据中的unicode 转换为中文
+ (NSString*)convertUnicode:(NSString *)aString
{
NSMutableString *convertedString = [aString mutableCopy];
[convertedString replaceOccurrencesOfString:@"\\U" withString:@"\\u" options:0 range:NSMakeRange(0, convertedString.length)];
CFStringRef transform = CFSTR("Any-Hex/Java");
CFStringTransform((__bridge CFMutableStringRef)convertedString, NULL, transform, YES);
return convertedString;
}
xcode8下安装alcatraz成功,具体操作是:
git clone https://github.com/alcatraz/Alcatraz.git
cd Alcatraz
xcodebuild
cd ..
rm -rf Alcatraz
Xcode 9 install success:
gem install update_xcode_plugins
update_xcode_plugins --unsign
cd /tmp
git clone https://github.com/alcatraz/Alcatraz.git
cd Alcatraz
xcodebuild
All done, if you want to restore:
update_xcode_plugins --restore
Then, the Xcode will resigned. Enjoy it.
https://github.com/inket/update_xcode_plugins
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。